home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 126-150 / scopedisk143 / vlt4.824 / rexx / dialbix.scp < prev    next >
Text File  |  1995-03-19  |  501b  |  33 lines

  1. #   DialBix.scp
  2. #
  3. #   This is a sample script to dial BIX through tymnet. Fill in the
  4. #   right parameters...
  5. #
  6. screengadgets off
  7. lines  40
  8. parity none
  9. echo on
  10.  
  11. send "ATDT --- ----*R"        # Put phone number here
  12.  
  13. wait "~"
  14.  
  15. emit "a"
  16. send "a"
  17.  
  18. on "Name" goto rest
  19.  
  20. loop:
  21. wait "in:"
  22. delay 2
  23. send "*X08bix*R"        # *X08 -> set tymnet up for local echo.
  24. emit "*X08bix*R"
  25. goto loop
  26.  
  27. rest:
  28. send "---------*R"        # Your account name
  29. emit "---------*R"
  30. beep
  31.  
  32. exit quiet            # You'll have to type your password yourself.
  33.